home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / imengv3.41p2.lha / ImEngV3.41p2 / Extra / SuperView / Install next >
Text File  |  1997-01-09  |  656b  |  28 lines

  1. ; Install SuperView support scripts.
  2. ; © 1996 Simon Edwards
  3. ; This script installs some support scripts for SuperView
  4.  
  5. (transcript "Installing...")
  6.  
  7. (message  (cat    "\nThis installs some support scripts for "
  8.             "using SuperView and IE 3.x together.\n"
  9.             "The support files will be installed in the "
  10.             "IE:ARexx/ directory."
  11.             ))
  12.  
  13. (working "Installing SuperView scripts...")
  14.  
  15. (copyfiles
  16.     (prompt "")
  17.     (help @copyfiles-help)
  18.     (files)
  19.     (pattern "#?")
  20.     (source "arexx")
  21.     (dest "IE:ARexx")
  22. )
  23.  
  24. (exit (cat
  25.     "Support scripts for SuperView have been installed in your "
  26.     "IE:ARexx/ directory.  See the ReadMe file in "
  27.     "this directory for more information."))
  28.